home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / GameCreators / TADS / manuals / TEX / TADS2.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-10-03  |  787 b   |  35 lines

  1. @echo off
  2. rem
  3. rem    Generate TADS 2.0 documentation
  4. rem
  5.  
  6. rem FIRST PASS - generate with dummy t20i_srt.tex
  7. echo \relax > t20i_srt.tex
  8. tex tadsman
  9.  
  10. rem SECOND PASS - generate with INCORRECT t20i_srt.tex
  11. del t20i_srt.tex
  12. ren t20i_gen.tex t20i_srt.tex
  13.  
  14.  
  15. tex tadsman
  16. if exist t20c_in.tex del t20c_in.tex
  17. ren t20c_gen.tex t20c_in.tex
  18.  
  19. rem Sort the index files
  20. del tadsindx.sor
  21. sort < tadsindx.tex > tadsindx.sor
  22. sort < t20i_gen.tex > t20i_srt.tex
  23.  
  24. rem Run the automated filter on the master index
  25. uniqind < tadsindx.sor > tadsindx.uni
  26.  
  27. echo.
  28. echo.
  29. echo Now you must hand-edit the generated raw-data index file,
  30. echo TADSINDX.UNI.  When you have completed editing this file,
  31. echo rename it to TADSINX.TEX and type this command:
  32. echo.
  33. echo       tads2_3 YES
  34.  
  35.